home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / modules / nessus-2.2.8.mo / usr / lib / nessus / plugins / rexecd.nasl < prev    next >
Text File  |  2005-01-14  |  2KB  |  70 lines

  1. #
  2. # This script was written by Renaud Deraison <deraison@cvs.nessus.org>
  3. #
  4. # See the Nessus Scripts License for details
  5. #
  6.  
  7. if(description)
  8. {
  9.  script_id(10203);
  10.  script_version ("$Revision: 1.15 $");
  11.  script_cve_id("CAN-1999-0618");
  12.  name["english"] = "rexecd";
  13.  script_name(english:name["english"]);
  14.  
  15.  desc["english"] = "
  16. The rexecd service is open. This service is design to 
  17. allow users of a network to execute commands remotely.
  18.  
  19.  
  20. However, rexecd does not provide any good means of authentication, so it 
  21. may be abused by an attacker to scan a third party host.
  22.  
  23. Solution : comment out the 'exec' line in /etc/inetd.conf and restart the 
  24. inetd process
  25.  
  26. Risk factor : Medium";
  27.  
  28.  script_description(english:desc["english"]);
  29.  
  30.  summary["english"] = "Checks for the presence of rexecd";
  31.  
  32.  script_summary(english:summary["english"]);
  33.  
  34.  script_category(ACT_GATHER_INFO);
  35.  
  36.  
  37.  script_copyright(english:"This script is Copyright (C) 1999 Renaud Deraison");
  38.  family["english"] = "Useless services";
  39.  script_family(english:family["english"]);
  40.  script_dependencie("find_service.nes");
  41.  script_require_ports("Services/rexecd", 512);
  42.  exit(0);
  43. }
  44.  
  45. #
  46. # The script code starts here
  47. #
  48. include("misc_func.inc");
  49.  
  50.  
  51. port = get_kb_item("Services/rexecd");
  52. if(!port){
  53.  p = known_service(port:512);
  54.  if(p && p != "rexecd")exit(0);
  55.  port = 512;
  56.  }
  57.  
  58. if(get_port_state(port))
  59. {
  60.  soc = open_sock_tcp(port);
  61.  if(soc)
  62.  {
  63.   send(socket:soc, data:string("0", raw_string(0), "root", raw_string(0), "FOOBAR!", raw_string(0), "id", raw_string(0)));
  64.   r = recv_line(socket:soc, length:4096);
  65.   if ( ! r ) exit(0);
  66.   if(ord(r[0]) == 1)security_warning(port);
  67.   close(soc);
  68.  }
  69. }
  70.